.toast {
    position: fixed;
    top: 20px;
    right: 15px;
    background: var(--card-bg);
    color: var(--accent);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
    transform: translateX(200%);
    transition: 0.4s;
    z-index: 2000;
}

.toast.show {
    transform: translateX(0);
}

/* ── LIQUID GLASS NAV ── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 14px 1rem;
    pointer-events: none;
}

.liquid-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px;
    border-radius: 99px;
    background: var(--glass-bg);
    backdrop-filter: blur(48px) saturate(180%);
    -webkit-backdrop-filter: blur(48px) saturate(180%);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.45),
        inset 0 2px 3px -1px var(--glass-highlight),
        inset 0 0 0 1px var(--glass-border);
    pointer-events: all;
    transition: all 0.4s;
}

.liquid-nav::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 45%;
    border-radius: 99px 99px 20px 20px / 99px 99px 10px 10px;
    background: linear-gradient(180deg, var(--glass-highlight) 0%, transparent 100%);
    pointer-events: none;
}

.glare-wrap {
    position: absolute;
    inset: 0;
    border-radius: 99px;
    overflow: hidden;
    pointer-events: none;
}

.glare {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    background: radial-gradient(circle 80px at var(--gx, 50%) var(--gy, 50%), rgba(200, 169, 110, 0.25) 0%, transparent 100%);
}

.liquid-nav:hover .glare {
    opacity: 1;
}

.brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    padding: 0 14px;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.nav-items {
    position: relative;
    display: flex;
    gap: 2px;
}

.active-pill {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    background: var(--pill-bg);
    border-radius: 99px;
    border: 1px solid var(--glass-border);
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), width 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.nav-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 0 16px;
    height: 40px;
    border-radius: 99px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-btn.active {
    color: var(--accent);
    font-weight: 500;
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-divider {
    width: 1px;
    height: 22px;
    background: var(--glass-border);
    margin: 0 2px;
}

.theme-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: color 0.3s;
    z-index: 2;
}

.theme-btn:hover {
    color: var(--accent);
}

/* mobile hamburger */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 2;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--accent);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--accent);
}

/* mobile drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--surface);
    border-right: 1px solid var(--border);
    z-index: 200;
    flex-direction: column;
    padding: 80px 2rem 2rem;
    gap: 8px;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    transform: translateX(-100%);
}

.mobile-nav.open {
    transform: translateX(0);
    display: flex;
}

.mobile-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--accent);
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 190;
}

.drawer-overlay.open {
    display: block;
}

/* ── SECTIONS ── */
section {
    position: relative;
}

/* ── HOME ── */
#home {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 2rem 6vw;
    overflow: hidden;
}

.home-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.home-text {
    flex: 1;
}

.home-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-eyebrow::before {
    content: '';
    flex: 0 0 30px;
    height: 1px;
    background: var(--accent);
}

.home-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.home-title em {
    color: var(--accent);
    font-style: italic;
}

.home-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2.5rem;
}

.home-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--bg);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

.home-cta:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

.home-cta svg {
    transition: transform 0.2s;
}

.home-cta:hover svg {
    transform: translateX(4px);
}

.home-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-img-wrap {
    width: clamp(280px, 40vw, 520px);
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    position: relative;
}

.home-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.08) 0%, transparent 60%);
}

.home-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
}

.home-img-placeholder svg {
    opacity: 0.4;
}

.home-float {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.float-star {
    color: var(--accent);
    font-size: 13px;
}

.float-text {
    font-size: 13px;
    color: var(--text-muted);
}

.float-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}

/* ── SHOP ── */
#shop {
    padding: 6rem 6vw;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.product-img-wrap {
    aspect-ratio: 1;
    background: var(--surface);
    overflow: hidden;
    position: relative;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}

.product-body {
    padding: 1rem 1.1rem 1.1rem;
}

.product-name {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.4;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--accent);
}

.product-price small {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
}

.add-btn {
    width: 100%;
    margin-top: 12px;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.add-btn.added {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

/* ── COLLECTION (carousel) ── */
#collection {
    padding: 6rem 6vw;
}

.carousel-wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.scroll-track {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    cursor: grab;
    border-radius: var(--radius);
    padding-bottom: 4px;
}

.scroll-track:active {
    cursor: grabbing;
}

.scroll-track::-webkit-scrollbar {
    height: 4px;
}

.scroll-track::-webkit-scrollbar-track {
    background: var(--surface);
    border-radius: 10px;
}

.scroll-track::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.scroll-inner {
    display: flex;
    gap: 1.2rem;
    padding: 4px;
    width: max-content;
}

.col-card {
    flex: 0 0 260px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform 0.3s;
}

.col-card:hover {
    transform: translateY(-4px);
}

.col-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: var(--surface);
    display: block;
}

.col-info {
    padding: 1rem;
}

.col-name {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 4px;
}

.col-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--accent);
}

.scroll-hint {
    text-align: center;
    margin-top: 1rem;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.explore-btn {
    letter-spacing: 3px;
    font-size: 17px;
    text-decoration: none;
    color: var(--accent);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    color: rgb(173, 166, 166);
}

.explore-btn:active {
    font-size: 15px;
}

/* ── CONTACT ── */
#contact {
    padding: 6rem 6vw;
}

.contact-wrap {
    max-width: 560px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    backdrop-filter: blur(12px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    padding: 14px 32px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 99px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

/* ── CART PANEL ── */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 300;
}

.cart-overlay.open {
    display: block;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 100vw;
    background: var(--surface);
    border-left: 1px solid var(--border);
    z-index: 301;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.cart-panel.open {
    transform: translateX(0);
}

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 22px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-empty {
    color: var(--text-muted);
    text-align: center;
    margin-top: 3rem;
    font-size: 14px;
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.cart-item-img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    background: var(--bg);
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
}

.cart-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--accent);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.qty-num {
    font-size: 14px;
    min-width: 18px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: #e05555;
}

.cart-foot {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-total span:first-child {
    color: var(--text-muted);
}

.cart-total strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--accent);
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 99px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s;
}

.checkout-btn:hover {
    background: var(--accent-2);
}

/* ── FOOTER ── */
footer {
    padding: 2rem 6vw;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {

    .nav-items,
    .nav-divider {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .home-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .home-desc {
        margin: 0 auto 2rem;
    }

    .home-float {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .home-cta {
        margin: 0 auto;
    }

    .home-text .home-eyebrow {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        padding: 1.5rem;
    }
}